home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.9 KB | 58 lines | [TEXT/MPS ] |
- ;
- ; File: Finder.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__FINDER__') = 'UNDEFINED' THEN
- __FINDER__ SET 1
-
-
- ; Make only the following consts avaiable to resource files that include this file
- kCustomIconResource EQU -16455 ; Custom icon family resource ID
- kContainerFolderAliasType EQU 'fdrp' ; type for folder aliases
- kContainerTrashAliasType EQU 'trsh' ; type for trash folder aliases
- kContainerHardDiskAliasType EQU 'hdsk' ; type for hard disk aliases
- kContainerFloppyAliasType EQU 'flpy' ; type for floppy aliases
- kContainerServerAliasType EQU 'srvr' ; type for server aliases
- kApplicationAliasType EQU 'adrp' ; type for application aliases
- kContainerAliasType EQU 'drop' ; type for all other containers
- ; types for Special folder aliases
- kSystemFolderAliasType EQU 'fasy'
- kAppleMenuFolderAliasType EQU 'faam'
- kStartupFolderAliasType EQU 'fast'
- kPrintMonitorDocsFolderAliasType EQU 'fapn'
- kPreferencesFolderAliasType EQU 'fapf'
- kControlPanelFolderAliasType EQU 'fact'
- kExtensionFolderAliasType EQU 'faex'
- ; types for AppleShare folder aliases
- kExportedFolderAliasType EQU 'faet'
- kDropFolderAliasType EQU 'fadr'
- kSharedFolderAliasType EQU 'fash'
- kMountedFolderAliasType EQU 'famn'
-
- ; Finder Flags
- kIsOnDesk EQU $1
- kColor EQU $E
- kIsShared EQU $40
- kHasBeenInited EQU $100
- kHasCustomIcon EQU $400
- kIsStationery EQU $800
- kIsStationary EQU $800
- kNameLocked EQU $1000
- kHasBundle EQU $2000
- kIsInvisible EQU $4000
- kIsAlias EQU $8000
-
- ENDIF ; __FINDER__
-